To be able to edit code and run cells, you need to run the notebook yourself. Where would you like to run the notebook?

This notebook takes about 20 seconds to run.

In the cloud (experimental)

Binder is a free, open source service that runs scientific notebooks in the cloud! It will take a while, usually 2-7 minutes to get a session.

On your computer

(Recommended if you want to store your changes.)

  1. Copy the notebook URL:
  2. Run Pluto

    (Also see: How to install Julia and Pluto)

  3. Paste URL in the Open box

Frontmatter

If you are publishing this notebook on the web, you can set the parameters below to provide HTML metadata. This is useful for search engines and social media.

Author 1

Admonitions

👀 Reading hidden code
166 μs

Tab

👀 Reading hidden code
166 μs

Info

hello

👀 Reading hidden code
149 μs

4 spaces

👀 Reading hidden code
189 μs

Info

hello

👀 Reading hidden code
151 μs

Footnote definitions

👀 Reading hidden code
167 μs

Tab

👀 Reading hidden code
171 μs

Have a look at [this]

👀 Reading hidden code
212 μs

this

asdf

md"""
[^this]:
asdf
"""
👀 Reading hidden code
173 μs
Error message

UndefVarError: z not defined

Stack trace

Here is what happened, the most recent locations are first:

  1. 	sqrt(1)	for x in z 		y
Silly computer!
begin
import Example
sqrt(1)
for x in z
y
end
md"""asdf
asdf
"""
r(z())
end
👀 Reading hidden code
---
f (generic function with 1 method)
function f(x)
sleep(1)
end
👀 Reading hidden code
357 μs
Error message

syntax: extra token "2" after end of expression

1 2 3 4 5 6 7 8
12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
👀 Reading hidden code
---

4 spaces

👀 Reading hidden code
203 μs

this

asdf

md"""
[^this]:
asdf
"""
👀 Reading hidden code
207 μs
PackageSpec(
  name = asdf
  version = v"1.2.3"
)
Pkg.PackageSpec(name="asdf", version=v"1.2.3")
👀 Reading hidden code
10.1 ms
import Pkg
👀 Reading hidden code
167 μs
"Earth"
planet = "Earth"
👀 Reading hidden code
10.7 μs

Hi, Earth

md"Hi, **$planet**" # 🙂
👀 Reading hidden code
9.5 ms

Hi, planetplanet**

md"Hi, $planet **$planet**" # 🙁 becomes LaTeX
👀 Reading hidden code
185 μs

Hi, EarthEarth

md"Hi, **$planet**$planet" # 🙁 becomes LaTeX
👀 Reading hidden code
286 μs

Hi, Earth Earth

md"Hi, _$planet_ **$planet**" # 🙂
👀 Reading hidden code
17.0 ms

👀 Reading hidden code
66.4 μs

a

b**

md"$a **$b**"
👀 Reading hidden code
176 μs
Error message

UndefVarError: $ not defined

Stack trace

Here is what happened, the most recent locations are first:

  1. md"""
md"""

Hello

$$
no math?
$$

huh
"""
👀 Reading hidden code
---

Hello asdf a

md"Hello ``asdf`` `a`"
👀 Reading hidden code
199 μs

Hello

math:)

md"""

Hello

$$math :)$$


"""
👀 Reading hidden code
178 μs

Hello

math!

huh

md"""

Hello

```math
math!
```

huh
"""
👀 Reading hidden code
215 μs

a a

a

md"""
a $$a$$

a
"""
👀 Reading hidden code
213 μs